home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************\
- * *
- * Configure to your env *
- * *
- \**********************************************************************/
-
- /*
- * Home dir
- */
- char *HOME = "e:\\bammi";
-
- /*
- * Path for external commands
- */
- char *path[]= {
- "", /* implicit ".\" */
- "e:\\exec\\",
- "e:\\util\\",
- "c:\\bin\\",
- "d:\\bin\\",
- "f:\\bin\\",
- (char *)NULL
- };
-
- /*
- * Extentions to try for external commands
- *
- */
- char *ext[] = {
- ".ttp",
- ".prg",
- ".tos",
- "",
- (char *)NULL
- };
-
- /*
- * Environment in which all commands are exec
- *
- */
- char *env =
- "cpp=e:\\exec\\gcc-cpp.ttp\0\
- cc1=e:\\exec\\gcc-cc1.ttp\0\
- gas=e:\\exec\\gcc-as.ttp\0\
- as=e:\\exec\\gcc-as.ttp\0\
- ar=e:\\exec\\gcc-ar.ttp\0\
- ld=e:\\exec\\gcc-ld.ttp\0\
- gcc=e:\\exec\\gcc.ttp\0\
- cc=e:\\exec\\gcc.ttp\0\
- make=e:\\util\\xmake.ttp\0\
- bison=e:\\bison\\bison.ttp\0\
- BISON_SIMPLE=e:\\bison\\bison.sim\0\
- BISON_HAIRY=e:\\bison\\bison.hai\0\
- flex=e:\\flex\\flex.ttp\0\
- FLEX_DEF=e:\\flex\\flexdef.skl\0\
- FLEX_FAST=e:\\flex\\flexfast.skl\0\
- TEXFORMATS=f:\\macros;.\0\
- TEXINPUTS=.;f:\\macros\0\
- TEXFONTS=.;f:\\tfm\0\
- GNULIB=e:\\lib\0\
- GCCEXEC=e:\\exec\\gcc-\0\
- TEMP=h:\0\0\0\0";
-
-
- /*
- * Aliases
- *
- */
- typedef struct {
- char *aname; /* alias name */
- char *adef; /* command to run */
- char *optarg; /* any arguements to come before supplied args */
- } ALIAS;
-
- ALIAS alias[] = {
- { "cpp", "e:\\exec\\gcc-cpp.ttp", (char *)NULL },
- { "cc1", "e:\\exec\\gcc-cc1.ttp", (char *)NULL },
- { "gas", "e:\\exec\\gcc-as.ttp", (char *)NULL },
- { "as", "e:\\exec\\gcc-as.ttp", (char *)NULL },
- { "ar", "e:\\exec\\gcc-ar.ttp", (char *)NULL },
- { "ld", "e:\\exec\\gcc-ld.ttp", (char *)NULL },
- { "gcc", "e:\\exec\\gcc.ttp", (char *)NULL },
- { "cc", "e:\\exec\\gcc.ttp", (char *)NULL },
- { "make", "e:\\util\\xmake.ttp", (char *)NULL },
- { "bison", "e:\\bison\\bison.ttp", (char *)NULL },
- { "mg", "c:\\bin\\mg.ttp", (char *)NULL },
- { "x", "c:\\bin\\mg.ttp", (char *)NULL },
- { "flex", "e:\\flex\\flex.ttp", (char *)NULL },
- { "tex", "f:\\bin\\tex.ttp", (char *)NULL },
- { "latex", "f:\\bin\\tex.ttp", "&lplain" },
- { (char *)NULL, (char *)NULL, (char *)NULL }
- };
-
- /* - eof - */
-